From f24b8a3348b6f787d2215b847f9e2d73f17bad36 Mon Sep 17 00:00:00 2001 From: Alastair Tse Date: Fri, 1 Dec 2006 18:35:19 +0000 Subject: [PATCH] [XEND] Fix mis-types in XendConfig Signed-off-by: Alastair Tse --- tools/python/xen/xend/XendConfig.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/python/xen/xend/XendConfig.py b/tools/python/xen/xend/XendConfig.py index 3e4df3183f..5a06f77efb 100644 --- a/tools/python/xen/xend/XendConfig.py +++ b/tools/python/xen/xend/XendConfig.py @@ -75,11 +75,11 @@ XENAPI_HVM_CFG = { XENAPI_CFG_TYPES = { 'uuid': str, - 'power_state': int, + 'power_state': str, 'name_label': str, 'name_description': str, 'user_version': str, - 'is_a_template': int, + 'is_a_template': bool0, 'resident_on': str, 'memory_static_min': int, 'memory_static_max': int, -- 2.30.2